home *** CD-ROM | disk | FTP | other *** search
- #if ! defined( NET_INFORMATION_CLASS_HEADER )
-
- /*
- ** Author: Samuel R. Blackburn
- ** CI$: 76300,326
- ** Internet: sammy@sed.csc.com
- **
- ** You can use it any way you like as long as you don't try to sell it.
- **
- ** Any attempt to sell WFC in source code form must have the permission
- ** of the original author. You can produce commercial executables with
- ** WFC but you can't sell WFC.
- **
- ** Copyright, 1995, Samuel R. Blackburn
- **
- ** $Workfile: $
- ** $Revision: $
- ** $Modtime: $
- */
-
- #define NET_INFORMATION_CLASS_HEADER
-
- class CNetworkInformation : public _NETINFOSTRUCT
- {
- public:
-
- CNetworkInformation();
- CNetworkInformation( const NETINFOSTRUCT *source );
- CNetworkInformation( const CNetworkInformation& source );
-
- virtual ~CNetworkInformation();
-
- virtual void Copy( const NETINFOSTRUCT *source );
- virtual void Copy( const CNetworkInformation& source );
- virtual void Empty( void );
-
- #if defined( _DEBUG )
-
- virtual void Dump( CDumpContext& dump_context ) const;
-
- #endif // _DEBUG
- };
-
- #endif // NET_INFORMATION_CLASS_HEADER
-